.zf_goods-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 15px 15px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #F6F6F6;
    background: #F6F6F6;
    cursor: pointer;
    max-width: 900px;
}
.zf_goods-container .zf_goods-thumb,.zf_goods-container #zf_goods-thumb{
    width: 80px;
    height: 80px;
    border-radius: 6px;
    margin-right: 10px;
}
.zf_goods-container .zf_goods-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.zf_goods-container .zf_goods-info .zf_goods-title{
    line-height: 21px;
    color: #121212;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    font-weight: 600;
}
.zf_goods-container .zf_goods-info .zf_goods-platform{
    color: #999;
    font-size: 13px;
    /*line-height: 18px;*/
    font-weight: 400;
    margin-bottom: unset;
}
.zf_goods-container .zf_goods-info .zf_goods-price{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    color: #ff7955;
}
.zf_goods-container .zf_goods-info .zf_goods-price .zf_goods-original-price{
    color: #999;
    font-size: 11px;
    text-decoration: line-through;
    margin-left: 5px;
}
@media screen and (min-width: 900px) {
    .zf_goods-container {
        margin: 15px auto;
    }
}
@media screen and (max-width: 320px) {
    .zf_goods-container .zf_goods-info .zf_goods-price .zf_goods-original-price,
    .zf_goods-container .zf_goods-info .zf_goods-price .zf_goods-go {
        display: none;
    }
}